Don't test parsing boolean values in css
authorMatthias Clasen <mclasen@redhat.com>
Mon, 21 Dec 2015 18:51:23 +0000 (13:51 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 21 Dec 2015 18:51:23 +0000 (13:51 -0500)
CSS doesn't have any boolean properties.

testsuite/css/parser/Makefile.am
testsuite/css/parser/boolean.css [deleted file]
testsuite/css/parser/boolean.errors [deleted file]
testsuite/css/parser/boolean.ref.css [deleted file]

index 57b11162f60c2f36ed0518b0d5644594889ce535..39f3e9fafc4599e539e1b3be351808195ade77ac 100644 (file)
@@ -179,9 +179,6 @@ test_data = \
        background-shorthand-single.ref.css \
         background-size.css \
         background-size.ref.css \
-       boolean.css \
-       boolean.errors \
-       boolean.ref.css \
        border.css \
        border.errors \
        border.ref.css \
diff --git a/testsuite/css/parser/boolean.css b/testsuite/css/parser/boolean.css
deleted file mode 100644 (file)
index 6773140..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-a {
-  boolean-property: true;
-}
-b {
-  boolean-property: TRUE;
-}
-c {
-  boolean-property: tRuE;
-}
-d {
-  boolean-property: 1;
-}
-e {
-  boolean-property: false;
-}
-f {
-  boolean-property: FALSE;
-}
-g {
-  boolean-property: FAlsE;
-}
-h {
-  boolean-property: 0;
-}
-i {
-  boolean-property: trueest;
-}
-j {
-  boolean-property: T;
-}
-k {
-  boolean-property: tru;
-}
-l {
-  boolean-property: 0.0;
-}
-m {
-  boolean-property: 1.0;
-}
-n {
-  boolean-property: fals;
-}
-o {
-  boolean-property: f;
-}
-p {
-  boolean-property: FAL;
-}
diff --git a/testsuite/css/parser/boolean.errors b/testsuite/css/parser/boolean.errors
deleted file mode 100644 (file)
index 93dcca5..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-boolean.css:26: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
-boolean.css:29: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
-boolean.css:32: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
-boolean.css:35: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
-boolean.css:38: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
-boolean.css:41: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
-boolean.css:44: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
-boolean.css:47: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
diff --git a/testsuite/css/parser/boolean.ref.css b/testsuite/css/parser/boolean.ref.css
deleted file mode 100644 (file)
index 1cc348d..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-a {
-  boolean-property: true;
-}
-
-b {
-  boolean-property: true;
-}
-
-c {
-  boolean-property: true;
-}
-
-d {
-  boolean-property: true;
-}
-
-e {
-  boolean-property: false;
-}
-
-f {
-  boolean-property: false;
-}
-
-g {
-  boolean-property: false;
-}
-
-h {
-  boolean-property: false;
-}